#Infinite while loop
while True:
    print("Looping!") 
#press Ctrl-C to exit the loop

#Break
while True:
    response = input()
    if int(response) % 7 == 0: 
        break

#Don't forget to return once to finish the code
#It will then pause to wait for your input.
